projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0bd352
)
flowbow: Mark private fields as private
author
Emmanuele Bassi
<ebassi@gnome.org>
Thu, 25 Feb 2021 11:25:05 +0000
(11:25 +0000)
committer
Emmanuele Bassi
<ebassi@gnome.org>
Thu, 11 Mar 2021 16:37:33 +0000
(16:37 +0000)
gtk/gtkflowbox.h
patch
|
blob
|
history
diff --git
a/gtk/gtkflowbox.h
b/gtk/gtkflowbox.h
index 1b8f8115537a5dc9e0b3e62a1cc65886af3c5991..d620bc4c6d999005eaadeffb448f7cdd40ff2c55 100644
(file)
--- a/
gtk/gtkflowbox.h
+++ b/
gtk/gtkflowbox.h
@@
-51,15
+51,19
@@
typedef struct _GtkFlowBoxChildClass GtkFlowBoxChildClass;
struct _GtkFlowBoxChild
{
+ /*< private >*/
GtkWidget parent_instance;
};
struct _GtkFlowBoxChildClass
{
+ /*< private >*/
GtkWidgetClass parent_class;
+ /*< public >*/
void (* activate) (GtkFlowBoxChild *child);
+ /*< private >*/
gpointer padding[8];
};